home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-09-08 | 283 b | 17 lines |
- package com.symantec.itools.lang;
-
-
- /**
- * @author Symantec Internet Tools Division
- * @version 1.0
- * @since VCafe 3.0
- */
-
- public class AssertionError
- extends Error
- {
- public AssertionError(String msg)
- {
- super("Assertion failed: " + msg);
- }
- }